Document Solutions for Word
GrapeCity.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / TableCollection Class / Insert Method / Insert(String[],InsertLocation) Method
A two dimensional array of texts to put in the cells. The first dimension determines the number of rows, the second the number of cells.
The target InsertLocation for the insertion.

In This Topic
    Insert(String[],InsertLocation) Method
    In This Topic
    Inserts a Table into this collection at a specified location.
    Syntax
    'Declaration
     
    Public Overloads Function Insert( _
       ByVal texts() As System.String, _
       ByVal location As InsertLocation _
    ) As Table
    public Table Insert( 
       System.string[] texts,
       InsertLocation location
    )

    Parameters

    texts
    A two dimensional array of texts to put in the cells. The first dimension determines the number of rows, the second the number of cells.
    location
    The target InsertLocation for the insertion.

    Return Value

    The inserted Table.
    See Also